Document Solutions for Word
GrapeCity.Documents.Word Assembly / GrapeCity.Documents.Word Namespace / TableCollection Class / Add Method / Add(String[],Style) Method
A two dimensional array of texts to put in the cells. The first dimension determines the number of rows, the second the number of cells.
The table style.

In This Topic
    Add(String[],Style) Method
    In This Topic
    Adds a Table to this collection at the InsertLocation.End location.
    Syntax
    'Declaration
     
    Public Overloads Function Add( _
       ByVal texts() As System.String, _
       Optional ByVal style As Style _
    ) As Table
    public Table Add( 
       System.string[] texts,
       Style style
    )

    Parameters

    texts
    A two dimensional array of texts to put in the cells. The first dimension determines the number of rows, the second the number of cells.
    style
    The table style.

    Return Value

    The added Table.
    See Also